home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Networking / SANA-II / slip_src / slip.docs < prev    next >
Encoding:
Text File  |  1994-02-17  |  2.1 KB  |  53 lines

  1. This file describes the use of the SANA-II SLIP device driver.
  2.  
  3. Insallation
  4. -----------
  5.  
  6. Place the file named 'slip.device' in DEVS:Networks, or wherever you are
  7. currently storing your SANA-II devce drivers.  Next, copy the slip0.config
  8. file to ENVARC:Sana2/slip0.config.  If you are planning on using multiple
  9. SLIP units, you will need a separate configuration file for each unit.
  10. The file's are named cslip[unit number].config.  So, SLIP unit 5 would
  11. have a configuration file named slip5.config.  Currently, there is a
  12. limitation of eight SLIP units, 0-7.  Please see the included slip0.config
  13. file for an explanation of how the file should be set up.
  14.  
  15.  
  16. Usage
  17. -----
  18.  
  19. If you are using the slip.device to connect to a dedicated line, you should
  20. leave out the 'CD' option in the configuration file.  You should set the
  21. baud rate to that used by the other end of the line.
  22.  
  23. If you are using the slip.device to connect to a dial-up slip connection,
  24. you will need to configure your modem to ignore the DTR signal from your
  25. Amiga.  Next, you will need to use a terminal program to dial the slip
  26. line.  Once you have connected, quit the terminal program.  Then, use
  27. the 'online' CLI command to tell the slip.device to attach itself to the
  28. serial port.  The command line should look something like:
  29.  
  30. 1.> online slip.device 0
  31.  
  32. Where 0 is the slip.device unit number.  Unfortunately there isn't an
  33. easy way to get slip.device to hang up the phone.  The easiest way is
  34. to just turn your modem off, which should cause carrier to drop and cause
  35. slip.device to go offline.
  36.  
  37. You may also tell slip.device to go offline by using the 'offline' command.
  38. (Both online and offline use ReadArgs(), so specifiying a '?' argument
  39. will give you their usage strings.)
  40.  
  41.  
  42. Header Compression (CSLIP)
  43. --------------------------
  44.  
  45. This version of slip.device supports Van Jacobson TCP/IP header compression,
  46. commonly referred to as CSLIP.  Whether or not header compression will be
  47. used is controlled by two options in the config file.  There are basically
  48. three modes the slip.device can be in: Compression off, Compression on, and
  49. Automatic.  Please refere to the included configuration file for more
  50. details.
  51.  
  52.  
  53.